home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CreatingGames / Utilities / C / Mesa / widgets-mesa / include / GL / Makefile.in < prev    next >
Encoding:
Makefile  |  1997-01-31  |  2.0 KB  |  72 lines

  1. # Makefile.in --- Mesa GL Widget for X11 Toolkit Programming
  2. # Copyright (C) 1995 by
  3. #   Jeroen van der Zijp <jvz@cyberia.cfdrc.com>
  4. #   Thorsten Ohl <Thorsten.Ohl@Physik.TH-Darmstadt.de>
  5. #
  6. # This library is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU Library General Public
  8. # License as published by the Free Software Foundation; either
  9. # version 2 of the License, or (at your option) any later version.
  10. #
  11. # This library is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. # GNU Library General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Library General Public
  17. # License along with this library; if not, write to the Free Software
  18. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. #
  20. # $Id: Makefile.in,v 1.4 1996/01/15 00:44:05 ohl Exp $
  21. #
  22. ########################################################################
  23.  
  24. SHELL = /bin/sh
  25.  
  26. srcdir = @srcdir@
  27. top_srcdir = @top_srcdir@
  28. mesa_srcdir = @mesa_srcdir@
  29. VPATH = @srcdir@
  30.  
  31. prefix = @prefix@
  32. exec_prefix = @exec_prefix@
  33.  
  34. incdir = $(prefix)/include/GL
  35.  
  36. INSTALL = @INSTALL@
  37. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  38. INSTALL_DATA = @INSTALL_DATA@
  39.  
  40. HEADERS = GLwDrawA.h GLwDrawAP.h GLwMDrawA.h GLwMDrawAP.h \
  41.       MesaDrawingArea.h MesaDrawingAreaP.h \
  42.       MesaMDrawingArea.h MesaMDrawingAreaP.h \
  43.       MesaWorkstation.h MesaWorkstationP.h
  44.  
  45. all:
  46.  
  47. install: $(HEADERS)
  48.     $(INSTALL_DATA) $(HEADERS) $(incdir)
  49.  
  50. uninstall:
  51.     cd $(incdir) && rm -f $(HEADERS)
  52.  
  53. # Standard GNU clean* targets:
  54. maintainer-clean: clean
  55.     @echo "This command is intended for maintainers to use;"
  56.     @echo "it deletes files that may require special tools to rebuild."
  57.  
  58. mostlyclean: clean
  59.  
  60. distclean: clean
  61.     rm -f Makefile
  62.  
  63. clean:
  64.     rm -f .*~ *~
  65.  
  66. # Additional clean* targets:
  67. realclean: distclean
  68.  
  69. # GNU autoconf(1) targets:
  70. Makefile: Makefile.in $(top_srcdir)/config.status
  71.     cd $(top_srcdir); $(SHELL) config.status
  72.